home *** CD-ROM | disk | FTP | other *** search
- rem This routine decrypts our tables in the beginning to useable material
- rem For run-time use only. The data in the exe/com is not decrypted!
- open"i",1,"info.1"
- open"o",2,"info.2"
- read_more:
- input #1,a$ BYTE
- if error>0 then bye:
- if a$<>"" then
- if a$<>"" then
- a=asc(a$)
- a=a-127
- a$=chr$(a)
- endif
- endif
- if a$="" then
- print#2,a$
- else
- print #2,a$ NONULL
- endif
- goto read_more:
-
- bye:
- close 1
- close 2
- end
-
-
-